From: Roland Winkler Date: Sun, 21 Jan 2007 13:45:48 +0000 (+0000) Subject: (bibtex-files): Fix customization type. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~2720 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=3cbb2f739d1745a6291880882e43e1baaa1f48bb;p=emacs.git (bibtex-files): Fix customization type. --- diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el index 3adec5d7a01..06fa3a01186 100644 --- a/lisp/textmodes/bibtex.el +++ b/lisp/textmodes/bibtex.el @@ -530,7 +530,8 @@ directories specified in `bibtex-file-path'. If an element is a directory, check all BibTeX files in this directory. If an element is the symbol `bibtex-file-path', check all BibTeX files in `bibtex-file-path'." :group 'bibtex - :type '(repeat file)) + :type '(repeat (choice (const :tag "bibtex-file-path" bibtex-file-path) + directory file))) (defvar bibtex-file-path (getenv "BIBINPUTS") "*Colon separated list of paths to search for `bibtex-files'.")